home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / efun / this_player < prev    next >
Text File  |  2001-04-06  |  499b  |  18 lines

  1. SYNOPSIS
  2.         object this_player(void)
  3.  
  4. DESCRIPTION
  5.         Return the current command giver.  This can be an interactive
  6.         user or a living object like a npc.
  7.         
  8.         If called from inside the heart_beat() of a not living object
  9.         0 will be returned.
  10.  
  11. EXAMPLE
  12.         if (this_player() != this_interactive())
  13.            write("Hey, somebody must have forced us to do a
  14.            command!\n");
  15.  
  16. SEE ALSO
  17.         this_object(E), previous_object(E), interactive(E), living(E)
  18.